sgdk
string.h
Go to the documentation of this file.
00001 
00010 #ifndef _STRING_H_
00011 #define _STRING_H_
00012 
00013 
00024 u32 strlen(const char *str);
00042 s16 strcmp(const char *str1, const char *str2);
00043 
00054 char* strclr(char *str);
00067 char* strcpy(char *dest, const char *src);
00080 char* strcat(char *dest, const char *src);
00081 
00096 void intToStr(s32 value, char *str, s16 minsize);
00111 void uintToStr(u32 value, char *str, s16 minsize);
00126 void intToHex(u32 value, char *str, s16 minsize);
00127 
00141 void fix32ToStr(fix32 value, char *str, s16 numdec);
00155 void fix16ToStr(fix16 value, char *str, s16 numdec);
00156 
00157 
00158 #endif // _STRING_H_
00159 
 All Classes Files Functions Variables Typedefs Enumerations Defines